home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 367 b | 19 lines |
- #!smake
- #
-
- include ${ROOT}/usr/include/make/commondefs
-
- LC++OPTS= -g
- LC++INCS= -I$(ROOT)/usr/include -I$(ROOT)/usr/include/GL
- LLDLIBS = -limage -lGLU -lGL -lX11 -lmalloc
- C++FILES = oglwindow.c++ texture.c++ unitsquare.c++ tex_cube.c++
-
- TARGETS = tex_cube
-
- default all: $(TARGETS)
-
- include ${COMMONRULES}
-
- $(TARGETS): $(OBJECTS)
- $(C++F) -o $@ $(OBJECTS) $(LDFLAGS)
-